home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / compress / tar321__.zip / SOURCES.ZIP / PCTIMER.ASM < prev    next >
Assembly Source File  |  1994-12-31  |  265b  |  16 lines

  1.         include    farnear.inc
  2.  
  3. _TEXT        segment    byte public 'CODE'
  4.         assume    cs:_TEXT
  5.     program    _pctimer
  6. ; unsigned long pctimer(void) - read PC internal timer
  7.         xor    ah,ah
  8.         int    1Ah
  9.         xchg    ax,dx    ; mov ax,dx
  10.         mov     dx,cx
  11.         ret
  12. _pctimer    endp
  13.  
  14. _TEXT        ends
  15.         end
  16.